home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / AnyForm.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  57 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10277);
  10.  script_bugtraq_id(719);
  11.  script_version ("$Revision: 1.7 $");
  12.  script_cve_id("CVE-1999-0066");
  13.  name["english"] = "AnyForm";
  14.  name["francais"] = "AnyForm";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The CGI 'AnyForm2' is installed.
  18.  
  19.  
  20. Old versions of this CGI have a well known security flaw that lets 
  21. anyone execute arbitrary commands with the privileges of the http daemon 
  22. (root or nobody).
  23.  
  24. Solution : remove it.
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of AnyForm2";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  39.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "http_version.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53. port = get_http_port(default:80);
  54. res = is_cgi_installed_ka(item:"AnyForm2", port:port);
  55. if( res )security_hole(port);
  56.  
  57.